home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 076-100 / disk_085 / lowmem / lms-trip.c < prev    next >
C/C++ Source or Header  |  1992-05-06  |  175b  |  14 lines

  1. /*
  2. ; Program which should force should trip the low memory server
  3. */
  4.  
  5. extern void *AllocMem();
  6.  
  7. main()
  8. {
  9.     char *p = AllocMem(7000000 , 0L);
  10.  
  11.     if (*p) FreeMem(p , 7000000);
  12. }
  13.  
  14.